home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
etc
/
kernel
/
header_postinst.d
/
nvidia-common
Wrap
Text File
|
2008-10-06
|
462b
|
15 lines
#!/bin/bash -e
. /usr/share/debconf/confmodule
db_set nvidia-common/obsolete-driver false
db_input high nvidia-common/obsolete-driver || true
if [ -x /usr/bin/nvidia-detector ]; then
LATEST=$(nvidia-detector)
if [ ${LATEST} != "none" ]; then
db_fset nvidia-common/obsolete-driver seen false
db_subst nvidia-common/obsolete-driver latest $LATEST
db_input high nvidia-common/obsolete-driver || true
db_go || true
fi
fi